const strconv.digits
7 uses
strconv (current package)
itoa.go#L61: return digits[i : i+1]
itoa.go#L81: const digits = "0123456789abcdefghijklmnopqrstuvwxyz"
itoa.go#L89: if base < 2 || base > len(digits) {
itoa.go#L166: a[i] = digits[uint(u)&m]
itoa.go#L171: a[i] = digits[uint(u)]
itoa.go#L181: a[i] = digits[uint(u-q*b)]
itoa.go#L186: a[i] = digits[uint(u)]
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |